home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / comm / mail / Mutt089src.lha / Mutt-0.89i-AMIGA / src / mx.h < prev    next >
Text File  |  1998-01-28  |  2KB  |  63 lines

  1. /*
  2.  * Copyright (C) 1996-8 Michael R. Elkins <me@cs.hmc.edu>
  3.  * 
  4.  *     This program is free software; you can redistribute it and/or modify
  5.  *     it under the terms of the GNU General Public License as published by
  6.  *     the Free Software Foundation; either version 2 of the License, or
  7.  *     (at your option) any later version.
  8.  * 
  9.  *     This program is distributed in the hope that it will be useful,
  10.  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  *     GNU General Public License for more details.
  13.  * 
  14.  *     You should have received a copy of the GNU General Public License
  15.  *     along with this program; if not, write to the Free Software
  16.  *     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  */ 
  18.  
  19. /*
  20.  * This header file contains prototypes for internal functions used by the
  21.  * generic mailbox api.  None of these functions should be called directly.
  22.  */
  23.  
  24. /* supported mailbox formats */
  25. enum
  26. {
  27.   M_MBOX = 1,
  28.   M_MMDF,
  29.   M_MH,
  30.   M_MAILDIR,
  31.   M_IMAP
  32. };
  33.  
  34. WHERE short DefaultMagic INITVAL (M_MBOX);
  35.  
  36. #define MMDF_SEP "\001\001\001\001\n"
  37.  
  38. int mbox_sync_mailbox (CONTEXT *);
  39. int mbox_open_mailbox (CONTEXT *);
  40. int mbox_check_mailbox (CONTEXT *, int *);
  41. int mbox_close_mailbox (CONTEXT *);
  42. int mbox_lock_mailbox (CONTEXT *, int);
  43. int mbox_parse_mailbox (CONTEXT *);
  44. int mmdf_parse_mailbox (CONTEXT *);
  45.  
  46. int mh_read_dir (CONTEXT *, const char *);
  47. int mh_sync_mailbox (CONTEXT *);
  48. int mh_check_mailbox (CONTEXT *, int *);
  49.  
  50. int maildir_read_dir (CONTEXT *);
  51. void maildir_create_filename (const char *, HEADER *, char *, char *);
  52.  
  53. int mbox_strict_cmp_headers (const HEADER *, const HEADER *);
  54. int mutt_reopen_mailbox (CONTEXT *, int *);
  55.  
  56. void mx_alloc_memory (CONTEXT *);
  57. void mx_update_context (CONTEXT *);
  58.  
  59. FILE *mx_open_file_lock (const char *, const char *);
  60.  
  61. int mx_lock_file (const char *, int, int, int);
  62. int mx_unlock_file (const char *path, int fd);
  63.